const { body } = require('express-validator');

module.exports = {
    create: [
        // Example:
        // body('field').exists().isString().isLength({ min: 1, max: 255 })
    ],
    update: [
        // Example
        // body('field').exists().isString().isLength({ min: 1, max: 255 })
    ]
};
